123456/V5 PT 2324/x107/D2.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?php $hoofdsteden = array("Nederland" => "Amsterdam", "Frankrijk" => "Parijs", "Spanje" => "Madrid", "Rusland" => "Moskou"); ksort($hoofdsteden); foreach($hoofdsteden as $land => $stad){ echo("De hoofdstad van $land is $stad<br>"); } ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse